home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / gfx / misc / MesaGL-aux.lha / src / Makefile < prev    next >
Makefile  |  1998-09-16  |  1KB  |  57 lines

  1. # Makefile for aux toolkit
  2.  
  3. # Mesa 3-D graphics library
  4. # Version:  2.5
  5. # Copyright (C) 1995-1996  Brian Paul
  6. #
  7. # This library is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU Library General Public
  9. # License as published by the Free Software Foundation; either
  10. # version 2 of the License, or (at your option) any later version.
  11. #
  12. # This library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. # Library General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Library General Public
  18. # License along with this library; if not, write to the Free
  19. # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.  
  22. ##### MACROS #####
  23.  
  24. VPATH = RCS
  25.  
  26. INCDIR = ../include
  27. LIBDIR = ../lib
  28.  
  29. OBJECTS = glaux$(O) font$(O) image$(O) shapes$(O) teapot$(O) vect3d$(O) xxform$(O)
  30.  
  31.  
  32.  
  33. ##### RULES #####
  34.  
  35. %$(O): %.c
  36.     $(CC) -c -I$(INCDIR) $(CFLAGS) -resident -malways-restore-a4 $<
  37.  
  38.  
  39.  
  40. ##### TARGETS #####
  41.  
  42. default:
  43.     @echo "Specify a target configuration"
  44.  
  45. clean:
  46.     -rm *$(O) *~
  47.  
  48. targets: $(LIBDIR)/$(AUX_LIB)
  49.  
  50. # Make the library
  51. $(LIBDIR)/$(AUX_LIB): $(OBJECTS)
  52.     $(MAKELIB) $(AUX_LIB) $(MAJOR) $(MINOR) $(OBJECTS)
  53.  
  54. include ../Make-config
  55.  
  56.  
  57.